feat: read (URLs/files/images) + write (files/SVG/Mermaid) + membership (v0.3.0-beta)#1
Merged
Merged
Conversation
…ip (v0.3.0-beta) The table can now READ shared content and WRITE downloadable output. Reading: - URL reading: fetch a shared link's page text into AI context, SSRF-guarded (blocks private IPs, cloud metadata, non-http(s); pins the validated IP vs DNS rebind), bounded, cached, config-gated. - File attachments: humans attach files the AIs read (text/PDF/DOCX). Stored PRIVATELY on the media disk under roundtable/<org>/<room>/ — own roundtable_attachment table (never media, invisible to the Media Manager) — served via an ACL + participation-gated streamer. - Images (vision): read natively when all AI seats can see; else one caption/OCR pass up front that everyone reads. Decided per room via core supportsVision(). Writing: - File output: any message downloads as .md/.txt (client) or .docx (server OOXML); AIs emit ```file:name.ext``` blocks rendered as download cards. - Diagrams: ```svg``` (or raw <svg>) renders inline (sanitized) + .svg; ```mermaid``` renders live via a lazy-loaded, self-hosted Mermaid + .mmd. Also includes v0.2.0 membership (invited people chat live; opt-in gate; per-room role floor). Requires tiger-core >= 0.36.0-beta (multimodal provider input + supportsVision). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The roundtable can now read shared content and write downloadable output.
Reading
http(s)+ odd ports, pins the validated IP against DNS rebinding), no redirects, bounded, cached, config-gated.roundtable/<org>/<room>/in a separateroundtable_attachmenttable (nevermedia→ invisible to the Media Manager), served only through an ACL + participation-gated streamer.supportsVision().Writing
```file:name.ext```blocks → download cards.```svg```/raw<svg>render inline (sanitized) + .svg;```mermaid```renders live via a lazy-loaded, self-hosted Mermaid + .mmd.Also
v0.2.0 membership: invited people chat live, opt-in gate, per-room role floor.
Requires
tiger-core ≥ 0.36.0-beta (WebTigers/TigerCore#41) — multimodal provider input +
supportsVision.Testing
Verified live on tiger-dev end-to-end: URL review, file extraction (text/PDF/DOCX) with an AI reading the content, private storage (not in
media), native vision + caption fallback, docx export (roundtrips through our own reader), and an AI producing afile:block + SVG + Mermaid in one reply. PHP + JS lint clean.Note: bundles a self-hosted
mermaid.min.js(~3.3 MB) so diagrams render offline/cPanel-safe; it is lazy-loaded only when a diagram appears.🤖 Generated with Claude Code